home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 183 / dpcs0503.iso / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / ResultSetColumnInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  1.1 KB  |  32 lines

  1. package asp.wizard;
  2.  
  3. class ResultSetColumnInfo {
  4.    private String _tableName;
  5.    private String _columnName;
  6.    private int _columnType;
  7.  
  8.    public String getTableName() {
  9.       return this._tableName;
  10.    }
  11.  
  12.    public void setTableName(String tableName) {
  13.       this._tableName = tableName;
  14.    }
  15.  
  16.    public String getColumnName() {
  17.       return this._columnName;
  18.    }
  19.  
  20.    public void setColumnName(String columnName) {
  21.       this._columnName = columnName;
  22.    }
  23.  
  24.    public int getColumnType() {
  25.       return this._columnType;
  26.    }
  27.  
  28.    public void setColumnType(int columnType) {
  29.       this._columnType = columnType;
  30.    }
  31. }
  32.